home *** CD-ROM | disk | FTP | other *** search
/ Software of the Month Club 2000 October / Software of the Month - Ultimate Collection Shareware 277.iso / pc / PROGRAMS / UTILITY / WINLINUX / DATA1.CAB / usr_-_Usr_Files / BIN / DISKCOPY < prev    next >
Text File  |  1999-09-17  |  256b  |  9 lines

  1. #!/bin/sh
  2. echo -n "Insert source disk in first floppy drive, then hit enter"
  3. read ans;
  4. dd if=/dev/fd0 of=/tmp/dcopy$$
  5. echo -n "Remove source disk and insert destination disk, then hit enter"
  6. read ans;
  7. dd of=/dev/fd0 if=/tmp/dcopy$$
  8. /bin/rm -f /tmp/dcopy$$
  9.